home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / programs / documentation / lightwave / sdk / sample / spikey / smakefile next >
Encoding:
Makefile  |  1995-03-30  |  485 b   |  22 lines

  1. #
  2. # Makefile for SAS/C LightWave plugins
  3. #
  4.  
  5.  
  6. # Plugins must be made with no stack checking to prevent the attempt to
  7. # exit.  Since there are multiple entry points, there is no clear exit
  8. # option.
  9. #
  10. UINC    = //include/
  11. ULIB    = //lib/
  12. CFLAGS    = cpu=68020 math=68881 opt nostkchk idir=$(UINC)
  13.  
  14.  
  15. # Output *.p modules are made directly from C source files to keep this
  16. # example simple.
  17. #
  18. .c.p:
  19.     sc link $(CFLAGS) startup=$(ULIB)serv_s.o $*.c $(ULIB)server.lib pname=$@
  20.  
  21. all : spikey.p
  22.